home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 34.zip / BS1 part 34 / Aztec C 5.0a disk 1.adf / include / graphics / sprite.h < prev    next >
C/C++ Source or Header  |  1988-11-20  |  220b  |  15 lines

  1. #ifndef    GRAPHICS_SPRITE_H
  2. #define    GRAPHICS_SPRITE_H
  3. #ifndef EXEC_TYPES_H
  4. #include "exec/types.h"
  5. #endif
  6. #define    SPRITE_ATTACHED    0x80
  7. struct    SimpleSprite
  8. {
  9. UWORD    *posctldata;
  10. UWORD    height;
  11. UWORD    x,y;
  12. UWORD    num;
  13. };
  14. #endif
  15.